import * as React from "react" import { type SearchParams } from "@/types/table" import { getValidFilters } from "@/lib/data-table" import { Skeleton } from "@/components/ui/skeleton" import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton" import { Shell } from "@/components/shell" import { searchParamsCache } from "@/lib/equip-class/validation" import { FormListsTable } from "@/lib/form-list/table/formLists-table" import { getTagClassists } from "@/lib/equip-class/service" import { EquipClassTable } from "@/lib/equip-class/table/equipClass-table" import { InformationButton } from "@/components/information/information-button" interface IndexPageProps { searchParams: Promise } export default async function IndexPage(props: IndexPageProps) { const searchParams = await props.searchParams const search = searchParamsCache.parse(searchParams) const validFilters = getValidFilters(search.filters) const promises = Promise.all([ getTagClassists({ ...search, filters: validFilters, }), ]) return (

객체 클래스 목록 from S-EDP

{/*

객체 클래스 목록을 확인할 수 있습니다.{" "} 버튼 을 통해 담당자 연락처, 입찰 이력, 계약 이력, 패키지 내용 등을 확인 할 수 있습니다.

*/}
}> {/* */} } >
) }